callBackMethod Property |
Pointer to a function that is to be called after the lookup page is loaded.
Syntax
HTML |
<IMG class="buslookup" callBackMethod="function()"> |
Scripting |
imgID.callBackMethod = function |
Parameters
Parameter |
Description |
---|---|
function |
Pointer to a valid function that will be called when the lookup application is loaded. |
Example
The following example shows how the property can be used.
<!-- HTML definition of the IMG tag for lookup --> <IMG class="buslookup" relatedColumn="EmployeeID" extraColumn="FirstName" application="employeesApp.XMLDocument" callBackMethod="informWhenLoaded()"> //Function call "informWhenLoaded" function informWhenLoaded() { application.notify("application window for lookup loaded successfully !"); }